home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htscatchurl.h < prev    next >
Text File  |  2004-04-07  |  3KB  |  84 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: URL catch .h                                           */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. // Fichier intercepteur d'URL .h
  38.  
  39. #ifndef HTS_CATCHURL_DEFH
  40. #define HTS_CATCHURL_DEFH 
  41.  
  42. #include "htsbasenet.h"
  43.  
  44. /* Library internal definictions */
  45. #ifdef HTS_INTERNAL_BYTECODE
  46.  
  47. // Fonctions
  48. void socinput(T_SOC soc,char* s,int max);
  49. #ifndef HTTRACK_DEFLIB
  50. HTSEXT_API T_SOC catch_url_init_std(int* port_prox,char* adr_prox);
  51. HTSEXT_API T_SOC catch_url_init(int* port,char* adr);
  52. HTSEXT_API int catch_url(T_SOC soc,char* url,char* method,char* data);
  53. #endif
  54.  
  55. #define CATCH_RESPONSE \
  56.   "HTTP/1.0 200 OK\r\n"\
  57.   "Content-type: text/html\r\n"\
  58.   "\r\n"\
  59.   "<!-- Generated by HTTrack Website Copier -->\r\n"\
  60.   "<HTML><HEAD>\r\n"\
  61.   "<TITLE>Link caught!</TITLE>\r\n"\
  62.   "<SCRIPT LANGUAGE=\"Javascript\">\r\n"\
  63.   "<!--\r\n"\
  64.   "function back() {\r\n"\
  65.   "  history.go(-1);\r\n"\
  66.   "}\r\n"\
  67.   "// -->\r\n"\
  68.   "</SCRIPT>\r\n"\
  69.   "</HEAD>\r\n"\
  70.   "<BODY>\r\n"\
  71.   "<H2>Link captured into HTTrack Website Copier, you can now restore your proxy preferences!</H2>\r\n"\
  72.   "<BR><BR>\r\n"\
  73.   "<H3><A HREF=\"javascript:back();\">Clic here to go back</A></H3>\r\n"\
  74.   "</BODY></HTML>"\
  75.   "<!-- Generated by HTTrack Website Copier -->\r\n"\
  76.   "\r\n"\
  77.  
  78. #endif
  79.  
  80. #endif
  81.  
  82.  
  83.  
  84.